c35ede5f9d237f5afce6d2b84c36f99c1422d8c7,src/freenet/support/LRUHashtable.java,LRUHashtable,popValue,#,53

Before Change


     */
    public final synchronized Object popValue() {
        if ( list.size() > 0 ) {
            return (	hash.remove(((QItem) list.pop()).obj)).value;
        } else {
            return null;
        }

After Change


     */
    public final synchronized Object popValue() {
        if ( list.size() > 0 ) {
			return hash.remove(list.pop().obj).value;
        } else {
            return null;
        }